to_text
Convert this big_integer
to a base 10 text representation.
Since
0.12.0
Convert this big_integer
to a text representation with the specified radix.
Does not include a base prefix in the output, i.e. integer(25).to_text(16)
returns 19
rather than 0x19
.
Supported radixes are from 2 to 36 (inclusive).
Since
0.12.0
Parameters
radix
the radix (base) to use for the text representation
Throws
exception
if the radix is outside the supported range